调用方法说明

方法描述 方法名 传入参数 返回参数
代办数量 getToDoWorkflowRequestCount int userId:用户id
String[] conditions:查询流程的条件,
为字符串数组类型
Int:代办的数量
代办列表 getToDoWorkflowRequestList int pageNo:当前页数
int pageSize:每页的分页数量
int recordCount:总行数
int userId:用户id
String[] conditions:查询流程的条件,
为字符串数组类型
WorkflowRequestInfo[]:
请求基本信息列表

示例代码

public static void getDaiBanShuLiang(int userid ) throws RemoteException{
WorkflowServicePortTypeProxy WorkflowServicePortTypeProxy = new WorkflowServicePortTypeProxy(url);
int count = WorkflowServicePortTypeProxy.getToDoWorkflowRequestCount(userid, null);
System.out.println("不带条件-->代办事宜数量:"+count);//获取待办事宜接口
//带查询条件查询,只能写关于这2个表的查询条件 workflow_requestbase t1,workflow_currentoperator t2
//查询条件里面不需要写and
String conditions[] = new String[1];
conditions[0] = " t1.creater = 14 ";//创建人为24
count = WorkflowServicePortTypeProxy.getToDoWorkflowRequestCount(userid, conditions);
System.out.println("带查询条件--> 代办事宜数量:"+count);//获取待办事宜接口
}

/**
* 获得代办列表
*/

public static void getDaiBanLieBiao(int userid ) throws Exception{
WorkflowServicePortTypeProxy WorkflowServicePortTypeProxy = new WorkflowServicePortTypeProxy(url);
String conditions[] = new String[1];
conditions[0] = " t1.creater = 14 ";//创建人为24 workflow_requestbase t1, workflow_currentoeprator t2
WorkflowRequestInfo WorkflowRequestInfo[] = WorkflowServicePortTypeProxy.getToDoWorkflowRequestList(1, 15, 100, userid, conditions);//获取待办事宜接口
System.out.println("代办事宜列表数量:"+WorkflowRequestInfo.length);
for(int i=0;i<WorkflowRequestInfo.length;i++){
WorkflowRequestInfo wri = WorkflowRequestInfo[i];
System.out.println(wri.getCreatorId()+" "+wri.getCreatorName()+" "+wri.getRequestName()+" "+wri.getCreateTime());
}
}
示例代码参考:

执行示例代码 结果如下:

返回参数说明

WorkflowRequestInfo 详细信息参见创建流程接口4.2.4 创建流程doCreateWorkflowRequest中描述